home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / pctj8409.arc / COMPARE.ASM < prev    next >
Assembly Source File  |  1986-09-14  |  256b  |  17 lines

  1. ; ROUTINE TO COMPARE TWO STRINGS
  2. ;
  3. compare    proc    far
  4. ;
  5.     push    si        ; save registers
  6.     push    di
  7.     push    cx
  8. ;
  9.     repz    cmpsb        ; one compare does it!
  10. ;
  11.     pop    cx        ; restore registers
  12.     pop    di
  13.     pop    si
  14.     ret
  15. ;
  16. compare    endp
  17.